home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Misc / IconBounce / Source / IconApp.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  386 b   |  16 lines

  1. #import <appkit/Application.h>
  2.  
  3. @interface IconApp: Application
  4. {
  5.   id iconView;
  6.   id speedSlider;            // holds the speed of the Animator.
  7. }
  8.  
  9. + new;                // create the new application, and make us its delegate.
  10. - setIconView:anObject;
  11. - appDidInit:sender;        // set up in the icon, and set the timing.
  12. - terminate:sender;        // store the defaults, and go away.
  13. - setSpeedSlider:anObject;
  14.  
  15. @end
  16.